My first repository

Introduce yourself to git!

# name myself on git
system(
  'git config --global user.email "YOUR USER NAME HERE";
   git config --global user.name "YOUR NAME HERE";'
)

Markdown

The sections to this document partly accompany the notes…

Markdown

When introducing git and GitHub, I briefly introduced Markdown, the “language” in which this README document is written. Markdown is a compact and readable way to create HTML documents, and it is used on GitHub (as a way of creating… README files), but it’s also used as one part of R Markdown, which we’ll get to later. Some features of Markdown include making lists using - (see above).

It’s easy to create links to your favourite website, write italics and boldface, and even insert images:

You can comment out things if you don’t want them to render. So, for instance, if I decide that I don’t want to display the puppies that Mathew Ling inserted, I can hide them…

… See, no puppies. (Actually, this is useful to note because the way I’ve done this is by using “raw” HTML. If you know HTML, you can always insert that into a Markdown document)

Headings are created with the # character. A line that beings with # is a first level heading, a line that begins with ## is a second-level heading, and a line that begins with ### is a

third level heading

Surprising, right? You can insert block quotes using >:

“Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Ut enim ad minim veniam, quis nostrud exercitation ullamco laboris nisi ut aliquip ex ea commodo consequat.”

and you can create inline code using backticks, or

print("actual code sections")

Plus a lot of other things, like adding animated GIFs…

Adding gifs

Adding gifs